home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 115 / macaddict115.cdr / Software / Development / phpstudio.dmg / PHP Studio.app / Contents / Frameworks / ASGradient.h < prev    next >
Text File  |  2005-12-17  |  358b  |  16 lines

  1. //
  2. //  ASGradient.h
  3. //
  4.  
  5. // Draws gradients...........................
  6.  
  7. #import <Cocoa/Cocoa.h>
  8.  
  9. @interface ASGradient : NSObject {
  10. }
  11.  
  12. + (void)drawGradientWithStartColor:(NSColor *)startColor endColor:(NSColor *)endColor rect:(NSRect)rect;
  13. + (void)drawVerticalGradientWithStartColor:(NSColor *)startColor endColor:(NSColor *)endColor rect:(NSRect)rect;
  14.  
  15. @end
  16.